undefined method `build_users' with nested models

Posted by Cédric on Stack Overflow See other posts from Stack Overflow or by Cédric
Published on 2010-04-28T15:46:28Z Indexed on 2010/04/28 15:53 UTC
Read the original article Hit count: 515

I've got into trouble with nested attributes.

Here is my Account model :

class Account < ActiveRecord::Base

    has_many :products
    has_many :blogs
    has_many :openings
    has_many :users
    has_one :logo, :class_name => "AccountPicture"
    has_one :address, :class_name => "AccountAddress"
    has_and_belongs_to_many :options


    accepts_nested_attributes_for :logo, :allow_destroy => true
    accepts_nested_attributes_for :address, :allow_destroy => true
    accepts_nested_attributes_for :users, :allow_destroy => true

end

And here is my User model :

class User < ActiveRecord::Base
    belongs_to :account
end

As you can see, Account accepts nested attributes for logo, address, and users.

While testing, i can use nested attributes for logo and address, but not for user.

a = Account.new

=> #<Account id: nil, hostname: nil, subdomain: nil, name: nil, description: nil, base_line: nil, footer: nil, phone_number: nil, mobile_number: nil, email_address: nil, created_at: nil, updated_at: nil>

# building the address works fine
>> a.build_address
=> #<AccountAddress id: nil, account_id: nil, country: nil, state: nil, county: nil, city: nil, suburb: nil, zipcode: nil, street: nil, streetno: nil, longitude: nil, latitude: nil, error_code: nil>

# building the users fails
>> a.build_users
NoMethodError: undefined method `build_users' for #<Account:0x7f6862a5f948>
from /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.5/lib/active_record/attribute_methods.rb:260:in `method_missing'
from (irb):2

Thus, in my views, when i use the nested forms, i got this error back :

User(#69850615730460) expected, got Array(#69850664775200)

Any help would be appreciated.

Thanks.

© Stack Overflow or respective owner

Related posts about ruby-on-rails

Related posts about nested-forms